home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / vol15n10.zip / MULTIL.ZIP / MLSRC.ZIP / MSDEV / PROJECTS / MLAUNCH / MFCML.CPP < prev    next >
C/C++ Source or Header  |  1996-02-27  |  1KB  |  49 lines

  1. // MFCML.cpp : Defines the initialization routines for the DLL.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MFCML.h"
  6.  
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMFCMLApp
  15.  
  16. BEGIN_MESSAGE_MAP(CMFCMLApp, CWinApp)
  17.     //{{AFX_MSG_MAP(CMFCMLApp)
  18.         // NOTE - the ClassWizard will add and remove mapping macros here.
  19.         //    DO NOT EDIT what you see in these blocks of generated code!
  20.     //}}AFX_MSG_MAP
  21. END_MESSAGE_MAP()
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CMFCMLApp construction
  25.  
  26. CMFCMLApp::CMFCMLApp()
  27. {
  28.     // TODO: add construction code here,
  29.     // Place all significant initialization in InitInstance
  30. }
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CMFCMLApp object
  34.  
  35. CMFCMLApp theApp;
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CMFCMLApp initialization
  39.  
  40. BOOL CMFCMLApp::InitInstance()
  41. {
  42.     // Register all OLE server (factories) as running.  This enables the
  43.     //  OLE libraries to create objects from other applications.
  44.     //    COleObjectFactory::RegisterAll();
  45.  
  46.     return TRUE;
  47. }
  48.  
  49.